home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / slzwce.c < prev    next >
C/C++ Source or Header  |  1996-05-09  |  5KB  |  156 lines

  1. /* Copyright (C) 1994, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* slzwce.c */
  20. /* Simple encoder compatible with LZW decoding filter */
  21. #include "stdio_.h"    /* includes std.h */
  22. #include "gdebug.h"
  23. #include "strimpl.h"
  24. #include "slzwx.h"
  25.  
  26. /* ------ Alternate LZWEncode filter implementation ------ */
  27.  
  28. /*
  29.  
  30. The encoded data stream produced by this implementation of the LZWEncode
  31. filter consists of a sequence of 9-bit data elements.  These elements are
  32. packed into bytes in big-endian order, e.g. the elements
  33.  
  34.     100000000 001100001
  35.  
  36. occurring at the very beginning of the data stream would be packed into
  37. bytes as
  38.  
  39.     10000000 00011000 01......
  40.  
  41. The first bit of each data element is a control bit.  If the control bit is
  42. 0, the remaining 8 bits of the data element are a data byte.  If the control
  43. bit is 1, the remaining 8 bits of the data element define a control
  44. function:
  45.  
  46.     1 00000000    synchronization mark, see below
  47.     1 00000001    end of data
  48.     1 xxxxxxxx    not used (all other values)
  49.  
  50. The synchronization mark occurs at the beginning of the data stream, and at
  51. least once every 254 data bytes thereafter.
  52.  
  53. This format is derived from basic principles of data encoding (the use of a
  54. separate flag bit to distinguish out-of-band control information from data
  55. per se, and the use of a periodic synchronization mark to help verify the
  56. validity of a data stream); it has no relationship to data compression.  It
  57. is, however, compatible with LZW decompressors.  It produces output that is
  58. approximately 9/8 times the size of the input.
  59.  
  60. */
  61.  
  62. /* Define the special codes, relative to 1 << InitialCodeLength. */
  63. #define code_reset 0
  64. #define code_eod 1
  65. #define code_0 2            /* first assignable code */
  66.  
  67. /* Internal routine to put a code into the output buffer. */
  68. /* Let S = ss->code_size. */
  69. /* Relevant invariants: 9 <= S <= 15, 0 <= code < 1 << S; */
  70. /* 1 <= ss->bits_left <= 8; only the rightmost (8 - ss->bits_left) */
  71. /* bits of ss->bits contain valid data. */
  72. private byte *
  73. lzw_put_code(register stream_LZW_state *ss, byte *q, uint code)
  74. {    uint size = ss->code_size;
  75.     byte cb = (ss->bits << ss->bits_left) +
  76.       (code >> (size - ss->bits_left));
  77.     if_debug2('W', "[w]writing 0x%x,%d\n", code, ss->code_size);
  78.     *++q = cb;
  79.     if ( (ss->bits_left += 8 - size) <= 0 )
  80.       {    *++q = code >> -ss->bits_left;
  81.         ss->bits_left += 8;
  82.       }
  83.     ss->bits = code;
  84.     return q;
  85. }
  86.  
  87. #define ss ((stream_LZW_state *)st)
  88.  
  89. /* Initialize LZW-compatible encoding filter. */
  90. int
  91. s_LZWE_reset(stream_state *st)
  92. {    ss->code_size = ss->InitialCodeLength + 1;
  93.     ss->bits_left = 8;
  94.     ss->next_code = (1 << ss->InitialCodeLength) + code_0;
  95.     return 0;
  96. }
  97. private int
  98. s_LZWE_init(stream_state *st)
  99. {    ss->InitialCodeLength = 8;
  100.     ss->table.encode = 0;
  101.     return s_LZWE_reset(st);
  102. }
  103.  
  104. /* Process a buffer */
  105. private int
  106. s_LZWE_process(stream_state *st, stream_cursor_read *pr,
  107.   stream_cursor_write *pw, bool last)
  108. {    register const byte *p = pr->ptr;
  109.     const byte *rlimit = pr->limit;
  110.     register byte *q = pw->ptr;
  111.     byte *wlimit = pw->limit;
  112.     int status = 0;
  113.     int signal = 1 << (ss->code_size - 1);
  114.     uint limit_code = (1 << ss->code_size) - 1;
  115.     uint next_code = ss->next_code;
  116.  
  117.     while ( p < rlimit )
  118.       {    if ( next_code == limit_code )
  119.           {    /* Emit a reset code. */
  120.             if ( wlimit - q < 2 )
  121.               {    status = 1;
  122.                 break;
  123.               }
  124.             q = lzw_put_code(ss, q, signal + code_reset);
  125.             next_code = signal + code_0;
  126.           }
  127.         if ( wlimit - q < 2 )
  128.           {    status = 1;
  129.             break;
  130.           }
  131.         q = lzw_put_code(ss, q, *++p);
  132.         next_code++;
  133.       }
  134.     if ( last && status == 0 )
  135.       {    if ( wlimit - q < 2 )
  136.             status = 1;
  137.         else
  138.           {    q = lzw_put_code(ss, q, signal + code_eod);
  139.             if ( ss->bits_left < 8 )
  140.               *++q = ss->bits << ss->bits_left;  /* final byte */
  141.           }
  142.       }
  143.     ss->next_code = next_code;
  144.     pr->ptr = p;
  145.     pw->ptr = q;
  146.     return status;
  147. }
  148.  
  149. #undef ss
  150.  
  151. /* Stream template */
  152. const stream_template s_LZWE_template =
  153. {    &st_LZW_state, s_LZWE_init, s_LZWE_process, 1, 2, NULL,
  154.     s_LZW_set_defaults, s_LZWE_reset
  155. };
  156.